flags: Qt.Window | Qt.Dialog
visible: true
+ LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft
+ LayoutMirroring.childrenInherit: true
+
width: Style.minimumWidthResolveConflictsDialog
height: Style.minimumHeightResolveConflictsDialog
minimumWidth: Style.minimumWidthResolveConflictsDialog
" --isvfsenabled : whether to set a VFS or non-VFS folder (1 for 'yes' or 0 for 'no') when creating an account via command-line.\n"
" --remotedirpath : (optional) path to a remote subfolder when creating an account via command-line.\n"
" --serverurl : a server URL to use when creating an account via command-line.\n"
- " --forcelegacyconfigimport : forcefully import account configurations from legacy clients (if available).\n";
+ " --forcelegacyconfigimport : forcefully import account configurations from legacy clients (if available).\n"
+ " --reverse : use a reverse layout direction.\n";
QString applicationTrPath()
{
_backgroundMode = true;
} else if (option == QLatin1String("--version") || option == QLatin1String("-v")) {
_versionOnly = true;
+ } else if (option == QLatin1String("--reverse")) {
+ setLayoutDirection(layoutDirection() == Qt::LeftToRight ? Qt::RightToLeft : Qt::LeftToRight);
} else if (option.endsWith(QStringLiteral(APPLICATION_DOTVIRTUALFILE_SUFFIX))) {
// virtual file, open it after the Folder were created (if the app is not terminated)
QTimer::singleShot(0, this, [this, option] { openVirtualFile(option); });
property var accountState
property string localPath: ""
+ LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft
+ LayoutMirroring.childrenInherit: true
+
width: 400
height: 500
minimumWidth: 300
property var materialisedItemsModel: null
property string accountUserIdAtHost: ""
+ LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft
+ LayoutMirroring.childrenInherit: true
+
title: qsTr("Evict materialised files")
color: palette.base
flags: Qt.Dialog | Qt.WindowStaysOnTopHint
Systray.destroyDialog(root);
}
+ LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft
+ LayoutMirroring.childrenInherit: true
+
width: root.windowWidth
height: rootBackground.height
color: palette.base
+ LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft
+ LayoutMirroring.childrenInherit: true
+
width: 320
height: contentLayout.implicitHeight
ApplicationWindow {\r
id: trayWindow\r
\r
+ LayoutMirroring.enabled: Application.layoutDirection === Qt.RightToLeft\r
+ LayoutMirroring.childrenInherit: true\r
+\r
title: Systray.windowTitle\r
// If the main dialog is displayed as a regular window we want it to be quadratic\r
width: Systray.useNormalWindow ? Style.trayWindowHeight : Style.trayWindowWidth\r